home *** CD-ROM | disk | FTP | other *** search
/ Mac Mania 1 / MacMania 1.toast / Educational / Travel / Las Vegas / background_3289.txt < prev    next >
Text File  |  1990-08-22  |  2KB  |  76 lines

  1. -- background: 3289 from stack: in
  2. -- bmap block id: 4842
  3. -- flags: 0000
  4. -- background id: 0
  5. -- name: 
  6. ----- HyperTalk script -----
  7. -- These background scripts handle check-boxes on a background by
  8. -- storing the settings of the check-boxes in a hidden field called
  9. -- "checks" and setting and resetting them on open and close card.
  10. --
  11. on newCard
  12.   repeat with i=1 to the number of background buttons
  13.     put "true" & return after field "checks"
  14.   end repeat
  15. end newCard
  16.  
  17. on openCard
  18.   set cursor to 4 -- wristwatch
  19.   repeat with i=1 to the number of background buttons
  20.     set the hilite of background button i to (line i of field "checks" is true)
  21.   end repeat
  22.   set cursor to 1 -- browse tool
  23. end openCard
  24.  
  25. on closeCard
  26.   set cursor to 4 -- wristwatch
  27.   repeat with i=1 to the number of background buttons
  28.     get hilite of background button i
  29.     put it into line i of field "checks"
  30.   end repeat
  31.   set cursor to 1 -- browse tool
  32. end closeCard
  33.  
  34. on newStack
  35.   newCard
  36. end newStack
  37.  
  38.  
  39. on openBackground
  40.   push recent card
  41. end openBackground
  42.  
  43.  
  44. -- part 47 (button)
  45. -- low flags: 00
  46. -- high flags: 0001
  47. -- rect: left=13 top=300 right=329 bottom=45
  48. -- title width / last selected line: 0
  49. -- icon id / first selected line: 21700 / 21700
  50. -- text alignment: 1
  51. -- font id: 0
  52. -- text size: 12
  53. -- style flags: 0
  54. -- line height: 16
  55. -- part name: Home
  56. ----- HyperTalk script -----
  57. on mouseUp
  58.   visual effect iris open
  59.   go Home
  60. end mouseUp
  61.  
  62.  
  63.  
  64. -- part 48 (field)
  65. -- low flags: 80
  66. -- high flags: 0000
  67. -- rect: left=477 top=52 right=329 bottom=512
  68. -- title width / last selected line: 0
  69. -- icon id / first selected line: 0 / 0
  70. -- text alignment: 0
  71. -- font id: 3
  72. -- text size: 9
  73. -- style flags: 0
  74. -- line height: 10
  75. -- part name: Checks
  76.